home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / at.preinst < prev    next >
Text File  |  2009-09-15  |  582b  |  17 lines

  1. #!/bin/sh
  2. set -e
  3. # Automatically added by dh_installinit
  4. if [ "$1" = install ] || [ "$1" = upgrade ]; then
  5.     if [ -e "/etc/init.d/atd" ] && [ ! -L "/etc/init.d/atd" ]; then
  6.         if [ "`md5sum \"/etc/init.d/atd\" | sed -e \"s/ .*//\"`" != \
  7.              "`dpkg-query -W -f='${Conffiles}' at | sed -n -e \"\\\\' /etc/init.d/atd '{s/ obsolete$//;s/.* //p}\"`" ]
  8.         then
  9.             echo "Obsolete conffile /etc/init.d/atd has been modified by you, renaming to .dpkg-bak"
  10.             mv -f "/etc/init.d/atd" "/etc/init.d/atd.dpkg-bak"
  11.         else
  12.             rm -f "/etc/init.d/atd"
  13.         fi
  14.     fi
  15. fi
  16. # End automatically added section
  17.